home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.net;
-
- import symjava.sql.SQLException;
-
- public class SQLServerConnException extends SQLException {
- public SQLServerConnException(String reason, String SQLState, int vendorCode) {
- super(reason, SQLState, vendorCode);
- }
-
- public SQLServerConnException(String reason, String SQLState) {
- super(reason, SQLState);
- }
-
- public SQLServerConnException(String reason) {
- super(reason);
- }
-
- public SQLServerConnException() {
- super("Lost connection to dbANYWHERE server.");
- }
- }
-